home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / othello.h < prev    next >
Encoding:
Text File  |  1985-06-16  |  1.8 KB  |  80 lines  |  [TEXT/ttxt]

  1. /* othello.h - opposite, GameBoard */
  2.  
  3. char *sprintf(), *strcpy();
  4.  
  5. #define TRUE        1
  6. #define FALSE        0
  7. #define NIL        ((Handle) 0)
  8. #define bool        char
  9. #define BUFSIZ        80
  10. #define NULL        0
  11. #define ERROR        -1
  12. #define VISIBLE        TRUE
  13. #define INVISIBLE    FALSE
  14. #define ALL        TRUE
  15. #define RESTRICT    FALSE
  16. #define toupper(c)    (((c) < 'a' || (c) > 'z')? (c) : (c) + 'A' - 'a')
  17. extern WindowPtr    myWindow;
  18.  
  19. #define FILE    int
  20. #define LINEHEIGHT    16
  21. #define ChicagoFont    0
  22. #define NewYorkFont    2
  23. #define GenevaFont    3
  24. #define MonacoFont    4
  25. #define InfoFont    NewYorkFont
  26. #define InfoSize    12
  27.  
  28. /* max size of stack; the heap gets the rest */
  29. #define MAXSTACKSIZE    16384            /* default is 8192    */
  30. #define MaxLookAhead    (MAXSTACKSIZE / 1024)    /* as near as I can tell*/
  31.  
  32. extern char message[];
  33. extern char note1[], note2[], note3[];
  34. extern int trace;
  35.  
  36. #define SCALE        24
  37. #define BOARDSIZE    8
  38. #define EndGame        (skill*3/2 + 2)
  39. extern int    GameOver;
  40. extern int    StopThinking;
  41.  
  42. #define stoneWhite    001
  43. #define stoneBlack    002
  44. #define stoneEmpty    000
  45. #define stoneEdge    003
  46. #define stoneColor    003
  47. #define opposite(c)    (~c & stoneColor)
  48. #define flipped        004        /* stone was just flipped    */
  49. #define threat        010        /* opponent's best move        */
  50.  
  51. extern int curColor;
  52. extern char *colorName[];
  53.  
  54. #define Macintosh    0
  55. #define Person        1
  56.  
  57. extern int player[];
  58. extern char *playerName[];
  59. extern int nStones[];
  60. extern int skill;
  61.  
  62. typedef char BoardArray[BOARDSIZE+2][BOARDSIZE+2];
  63. extern BoardArray    GameBoard;
  64.  
  65. typedef struct move {
  66.     char    row, col;
  67.     short    value;
  68. } MoveRecord, MoveList[BOARDSIZE*BOARDSIZE];
  69. #define minValue    (-100 * BOARDSIZE * BOARDSIZE)
  70.  
  71. extern short position[BOARDSIZE+2][BOARDSIZE+2];
  72.  
  73. #define pRestoreBoard    0
  74. #define pFindMoves    1
  75. #define pDoFlips    2
  76. #define pAnalyze    3
  77. #define pSortMoves    4
  78. #define nTimed        5
  79. extern int nTicks[];    /* amount of time spent in each function    */
  80.